home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Applications / Newswatcher 2.0b22 / NW Source / Source / readme.c < prev    next >
Encoding:
Text File  |  1994-07-18  |  989 b   |  51 lines  |  [TEXT/MPCC]

  1. /*----------------------------------------------------------------------------
  2.  
  3.     This note describes how NewsWatcher's source code is organized.
  4.     
  5.     def.h
  6.     
  7.         Reusable constant and type definitions.
  8.     
  9.     glob.h and glob.c
  10.     
  11.         Global non-reusable constant, type, and variable definitions.
  12.     
  13.     newswatcher.c
  14.     
  15.         The main program, main event loop, high level event handlers,
  16.         initialization, and termination code.
  17.         
  18.     article.c
  19.     dialog.c
  20.     dummy.c
  21.     message.c
  22.     group.c
  23.     status.c
  24.     subject.c
  25.     text.c
  26.     
  27.         Window handling modules. The high level event handlers
  28.         in newswatcher.c dispatch events to these modules.
  29.         
  30.     about.c through wind.c
  31.     
  32.         Middle level modules. 
  33.         
  34.     ftp.c
  35.     nntp.c
  36.     smtp.c
  37.     net.c
  38.     
  39.         Reusable low-level TCP/IP modules. The net.c module is the
  40.         only one which talks directly to the MacTCP driver.
  41.         
  42.     dnr.c
  43.     
  44.         Apple's MacTCP DNR glue.
  45.         
  46.     apputil.c through windutil.c
  47.     
  48.         Reusable utility modules.
  49.     
  50. ----------------------------------------------------------------------------*/
  51.